571c1b660f85ea5cabbedfd8e38427c31a0e3c37,wicket-kendo-ui/src/main/java/com/googlecode/wicket/kendo/ui/form/dropdown/lazy/DropDownListBehavior.java,DropDownListBehavior,onConfigure,#Component#,63
Before Change
this.setOption("dataSource", this.dataSource.getName());
// data source //
this.dataSource.setTransportRead(Options.asString(this.getChoiceCallbackUrl()));
}
}
After Change
this.setOption("dataSource", this.dataSource.getName());
// data source //
if (this.isEnabled(component))
{
this.dataSource.setTransportRead(Options.asString(this.getChoiceCallbackUrl()));
}
}
}